home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 8 / FM Towns Free Software Collection 8.iso / t_os / namegen / src / wordbuf.c < prev   
C/C++ Source or Header  |  1994-06-01  |  468b  |  25 lines

  1. /*****  名前ジェネレータ namegen    *****/
  2. /*****  wordbuf.c                   *****/
  3.  
  4.  
  5.  
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. #include "namegen.h"
  9.  
  10.  
  11. /*  ワード格納バッファ wordbuf を一個確保する   */
  12. /*  ret:確保した wordbuf への ptr               */
  13. char *get_wordbuf(void){
  14.  
  15.     char            *wordbuf;
  16.  
  17.     wordbuf = (char*)malloc(WORDBUF_SIZE);
  18.     if (wordbuf == NULL){
  19.         error(ERR_OUT_OF_MEMORY, NULL);
  20.     }
  21.     return wordbuf;
  22. }
  23.  
  24.  
  25.